@charset "utf-8";
/**
 * 公共样式
 */
 
/*总体*/
:root{
    --maincolor: #297eb2;
    --whitecolor: #fff;
}
.wrap{
    min-width: 1260px;
}
.container{
    width: 1200px;
    margin: auto;
}
/*首页标题*/
.index-title{
    padding: 56px 0 40px;
}
.index-title-h2{
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
}
.index-title-h3{
    font-size: 15px;
}

/*顶部*/
.top{
    height: 40px;
    background-color: var(--maincolor);
}
.top-l,.top-r{
    line-height: 40px;
    color: var(--whitecolor);
}
.top-r{
    font-weight: bold;
}
.top-r i{
    color: #fff;
}
@media (max-width:1260px){
    .top{
        display: none;
    }
}
/*栏目*/
.header{
    background-color: var(--whitecolor);
    height: 100px;
}
.head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header .logo img{
    height: 56px;
}
.header .logo{
    margin-top: 22px;
}
.header .nav ul li{
    width: 120px;
    display: inline-block;
}
.header .nav ul li a{
    color: #434343;
    line-height: 100px;
}

/*底部*/
.footer-top{
    padding: 45px 0 60px;
    background-color: #434343;
}
.footer-top>div>div{
    width: calc(100%/3);
}
.footer-top h2{
    height: 40px;
}
.footer-top a{
    color: var(--whitecolor);
}
.footer-top h2 a{
    line-height: 40px;
}
.footer-top p a{
    margin-right: 10px;
    /*width: 66px;*/
    font-size: 12px;
    line-height: 30px;
}
.footer-top p{
    font-size: 12px;
    line-height: 24px;
    color: var(--whitecolor);
}
.footer-top-3>div:first-child{
    margin-left: 100px;
}
.footer-top-3 img{
    display: block;
    width: 110px;
}
.footer-top-3 p{
    margin-top: 20px;
    font-size: 13px;
}
.footer-copyright{
    padding: 20px 0;
    background-color: #202020;
}
.footer-copyright>div,.footer-copyright a{
    color: #cccccc;
    font-size: 12px;
}

























